type github.com/jackc/pgx/v5/pgtype.float64Wrapper

12 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L345: type float64Wrapper float64
		builtin_wrappers.go#L347: func (w float64Wrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L349: func (w *float64Wrapper) ScanInt64(v Int8) error {
		builtin_wrappers.go#L354: 	*w = float64Wrapper(v.Int64)
		builtin_wrappers.go#L359: func (w float64Wrapper) Int64Value() (Int8, error) {
		builtin_wrappers.go#L367: func (w *float64Wrapper) ScanFloat64(v Float8) error {
		builtin_wrappers.go#L372: 	*w = float64Wrapper(v.Float64)
		builtin_wrappers.go#L377: func (w float64Wrapper) Float64Value() (Float8, error) {
		pgtype.go#L629: 		return &wrapFloat64ScanPlan{}, (*float64Wrapper)(target), true
		pgtype.go#L774: 	return plan.next.Scan(src, (*float64Wrapper)(dst.(*float64)))
		pgtype.go#L1486: 		return &wrapFloat64EncodePlan{}, float64Wrapper(value), true
		pgtype.go#L1633: 	return plan.next.Encode(float64Wrapper(value.(float64)), buf)